
#---- Compilador
CC = gcc
CPPFLAGS =  -Wall -fno-rtti -fno-exceptions -Wall -fomit-frame-pointer \
            -ffast-math -Iinclude   -DdNODEBUG -O2 
            
LIBDS = libdrawstuff.a
DEP1 = src/drawstuff.o src/x11.o


all: $(LIBDS)


#------------------------------
$(LIBDS): $(DEP1)
	    ar rc $(LIBDS) $(DEP1)
			
clean::
	  rm -f $(LIBDS) $(DEP1) *.bak *~
